home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 06 / alib / strlenz.asm < prev    next >
Assembly Source File  |  1991-08-21  |  262b  |  25 lines

  1.     include    asm.inc
  2.  
  3.     public    strlenz
  4.  
  5.     .code
  6.  
  7. ;;    strlenz
  8. ;
  9. ;    entry    DS:SI    string
  10. ;    exit    CX    byte count including NULL
  11. ;    uses    AX
  12. ;
  13. strlenz    proc
  14.     push    si
  15.     movx    cx,0
  16. slz1:    inc    cx
  17.     lodsb
  18.     cmp    al,NULL_CHAR
  19.     jne    slz1
  20.     pop    si
  21.     ret
  22. strlenz    endp
  23.  
  24.     end
  25.